home *** CD-ROM | disk | FTP | other *** search
/ Champak 128 / Vol 128 (Damaged).iso / games / rocketbi.swf / scripts / DefineButton2_426 / BUTTONCONDACTION on(keyPress Space).as < prev    next >
Encoding:
Text File  |  2011-03-26  |  338 b   |  15 lines

  1. on(keyPress "<Space>"){
  2.    with(_root)
  3.    {
  4.       if(!paused and mode[human] == "ground")
  5.       {
  6.          playsound("frenazo");
  7.          mytrack[human] = bikes[human]._y;
  8.          yvel[human] = -6;
  9.          xvel[human] *= 0.3;
  10.          mode[human] = "falling";
  11.          bikes[human].chase.b._rotation += 12;
  12.       }
  13.    }
  14. }
  15.